Skip to main content

servicelog

Table: servicelog

The servicelog table stores execution logs and status details for internal or external service calls.


Columns

Column NameData TypeConstraintsDescription
serviceLogIdint(11)NO (PK)Unique identifier for each service log entry
serviceTypevarchar(255)YESType or category of the service
dateAddeddatetimeYESDate and time when the log entry was created
dateDuedatetimeYESScheduled execution or due date of the service
dateEditeddatetimeYESDate and time when the log was last updated
descriptionvarchar(255)YESDescription of the service request or response
failureCausevarchar(255)YESReason for failure, if the service execution failed
retriesint(11)YESNumber of retry attempts made for the service
serviceUrlvarchar(5555)YESEndpoint URL of the service being invoked
statusvarchar(255)YESCurrent execution status (e.g., SUCCESS, FAILED, PENDING)
serviceMethodvarchar(255)YESMethod used to invoke the service (e.g., GET, POST)

Indexes

  • PRIMARY KEY — Index on serviceLogId

Foreign Key Relations

  • None

Usage Notes

  • Used to track service execution attempts and outcomes.
  • Helpful for monitoring retries, failures, and service health.
  • Commonly used for background jobs, integrations, and scheduled services.
  • Supports auditing and debugging of service interactions.